home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJ111M2.ZIP / tests / t17.c < prev   
C/C++ Source or Header  |  1994-01-08  |  337b  |  26 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. void test(const char *);
  5.  
  6. const char *s1="1";
  7. const char *s2="1/2";
  8. const char *s3="1/2/3";
  9. const char *s4="1/2/3/4";
  10.  
  11. main()
  12. {
  13.     test(s1);
  14.     test(s2);
  15.     test(s3);
  16.     test(s4);
  17. }
  18.  
  19. void test(const char *s)
  20. {
  21.     int    a;
  22.  
  23.     printf("%d\n", sscanf(s, "%d/%d/%d/%d", &a, &a, &a, &a));
  24. }
  25.  
  26.